Hi Tom,
Below is the patch that I’ve been using to get the segment that is currently cutting. You had warned me that this won’t work with the circular buffers, but it has worked for our applications, so apparently the buffer is never filled enough
to circle around.
However, starting with KMotion431 e or f, it no longer reports the correct line. It reports a couple lines later. It sort of looks like it’s reporting the last line to download, not the line currently executing. Do you have any idea
what changed? I’ll do some debugging on it and see what I find.
Thanks,
Toby
int CGCodeInterpreter::GetActiveLineNumber(){
CCoordMotion * cm = this->CoordMotion;
CString response,responsebuf;
bool Finished=false, NotStarted=false;
SEGMENT *segs_to_check;
int current_line;
/* Check if kmotion board is active */
if (!cm->GetHalt() && !cm->m_Simulate)
{
// determine the line number we were at
if (cm->KMotionDLL->WriteLineReadLine("ExecTime",response.GetBufferSetLength(MAX_LINE))) return 1;
response.ReleaseBuffer();
double timeAlreadyExecuted;
int result=sscanf(response, "%lf",&timeAlreadyExecuted);
if (result != 1) return -1;
if (timeAlreadyExecuted < 0.0) return -1;
int i,k,n;
double BufTime=0;
segs_to_check = segments_executing;
if (segments_executing==segments)
n=nsegs;
else
n=prev_nsegs;
i=0;
// search for where we were in the path based on time
for (i=0; i<n; i++)
{
for (k=0; k<3; k++)
{
BufTime += segs_to_check[i].C[k].t;
if (BufTime > timeAlreadyExecuted) break;
}
if (BufTime > timeAlreadyExecuted) break;
}
if (i==n)
{
return -1;
}
current_line = segs_to_check[i].sequence_number;
return current_line;
}
return -1;
}